home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr15 / ixe130.zip / IXEBLIT.H < prev    next >
Text File  |  1993-05-07  |  709b  |  37 lines

  1. /*
  2.     Filename    :   ixeblit.hpp
  3.     Author      :   Ray E. Bornert II
  4.     Date        :   1993-APR-09
  5.  
  6. */
  7.  
  8. void ixeBlitXY32                  //contains 32bit code
  9. (
  10.     unsigned char *dest,
  11.     void          *ixeCode,
  12.     unsigned long DestWidth,
  13.     unsigned long x,
  14.     unsigned long y
  15. );
  16.  
  17. void ixeBlitXY16                  //contains 16bit code
  18. (
  19.     unsigned char *dest,
  20.     void          *ixeCode,
  21.     unsigned short DestWidth,
  22.     unsigned short x,
  23.     unsigned short y
  24. );
  25.  
  26. void ixeBlitXY                    //contains compiler dependent code
  27. (
  28.     unsigned char *dest,
  29.     void          *ixeCode,
  30.     unsigned int DestWidth,
  31.     unsigned int x,
  32.     unsigned int y
  33. );
  34.  
  35. void disableInt13(void);
  36. void enableInt13(void);
  37.